User:Novem Linguae/Scripts/CWWEditSummary.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
Documentation for this user script can be added at User:Novem Linguae/Scripts/CWWEditSummary. |
// <nowiki>
// Adds a "Provide attribution" link to "Edit source" and "Speical:Import" pages. When clicked, provides the attribution text suggested at [[WP:CWW]] (Copying Within Wikipedia), which should satisfy CC BY-SA 3.0 legal requirements.
// Particularly useful on testwiki. Mildly useful on enwiki.
// See also User:Chlod/Scripts/Deputy/AttributionNoticeTemplateEditor
$( async function () {
const action = mw.config.get( 'wgAction' );
let title = mw.config.get( 'wgPageName' ).replace( /_/g, ' ' );
const wiki = mw.config.get( 'wgDBname' );
const editSummaryAppend = '([[w:User:Novem Linguae/Scripts/CWWEditSummary.js|CWWEditSummary]])';
if ( action === 'edit' ) {
$( '.editCheckboxes > .oo-ui-layout' ).append( '<div><a style="padding: 4px; text-decoration: underline;" id="CWWEditSummary-Edit">Provide attribution</a></div>' );
$( '#CWWEditSummary-Edit' ).on( 'click', function () {
if ( wiki !== 'enwiki' ) {
title = 'w:' + title;
}
$( '#wpSummary' ).val( `Copied content from [[${ title }]]; see that page's history for attribution ${ editSummaryAppend }` );
} );
} else if ( title === 'Special:Import' ) {
$( '#mw-input-wpintro' ).parent( 3 ).after( '<div style="margin-top: 0.7em;"><a style="background-color: rgba(255, 255, 0, 0.4); padding: 4px; text-decoration: underline;" id="CWWEditSummary-SpecialImport">Select defaults and provide attribution</a></div>' );
$( '#CWWEditSummary-SpecialImport' ).on( 'click', function () {
$( '[name="interwiki"]' ).val( 'en' );
$( '[name="interwiki"] + .oo-ui-dropdownWidget > span > .oo-ui-labelElement-label' ).html( 'en' );
$( '[name="interwikiTemplates"]' ).prop( 'checked', true );
$( '[name="log-comment"]' ).val( `Copied content from another wiki; see the linked page's history for attribution ${ editSummaryAppend }` );
$( '[name="frompage"]' ).trigger( 'focus' );
} );
}
} );
// </nowiki>